Finding ID | Version | Rule ID | IA Controls | Severity |
---|---|---|---|---|
V-68947 | PPS9-00-004300 | SV-83551r1_rule | Medium |
Description |
---|
The DoD standard for authentication is DoD-approved PKI certificates. Authentication based on User ID and Password may be used only when it is not possible to employ a PKI certificate, and requires AO approval. In such cases, database passwords stored in clear text, using reversible encryption, or using unsalted hashes would be vulnerable to unauthorized disclosure. Database passwords must always be in the form of one-way, salted hashes when stored internally or externally to the DBMS. |
STIG | Date |
---|---|
EDB Postgres Advanced Server Security Technical Implementation Guide | 2016-08-19 |
Check Text ( C-69419r1_chk ) |
---|
Execute the following SQL as enterprisedb: SHOW password_encryption; If the value is not "on", this is a finding. |
Fix Text (F-75131r1_fix) |
---|
Execute the following SQL as enterprisedb: ALTER SYSTEM SET password_encryption = on; SELECT pg_reload_conf(); |